semicolon and whitespace consistency fixes - files that omit semicolon should do so consistently, files that use semicolon throughout may do so 
diff --git a/XMLHttpRequest/open-url-about-blank-window.htm b/XMLHttpRequest/open-url-about-blank-window.htm index 6873321..0c20127 100644 --- a/XMLHttpRequest/open-url-about-blank-window.htm +++ b/XMLHttpRequest/open-url-about-blank-window.htm 
@@ -14,8 +14,8 @@  <script>  test(function() {  var client = new self[0].XMLHttpRequest() - client.open("GET", "folder.txt", false); - client.send(""); + client.open("GET", "folder.txt", false) + client.send("")  assert_equals(client.responseText, "top\n")  })  </script>